.banner-img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.carousel-inner {
    width: 100%;
}

.hero-section {
    min-height: 100%;
    padding: 50px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 0
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgb(245 196 0 / .08) 0%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    right: -200px;
    z-index: 1
}

.hero-section .hero-container {
    position: relative;
    z-index: 2;
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0
}

.hero-section .content-grid {
    display: flex;
    grid-template-columns: 250px 1fr 250px;
    gap: 60px;
    align-items: center;
    max-height: 500px;
    max-width: 1644px;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 40px
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}



.hero-section .center-content {
    text-align: center;
    padding: 0px 20px
}

.hero-section .badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5c400 0%, #ffd740 100%);
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: slideDown 0.8s ease-out
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-section .main-heading {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -3px;
    animation: fadeInUp 1s ease-out 0.2s both
}

.hero-section .highlight-text {
    background: linear-gradient(135deg, #f5c400 0%, #11559b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-section .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -.5px;
    animation: fadeInUp 1s ease-out 0.4s both
}

.hero-section .tagline {
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 36px;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.6s both
}

.hero-section .center-content .cta-wrapper {
    width: 289px;
    margin: 0 auto
}

.hero-section .cta-wrapper {
    margin-bottom: 22px !important;
    display: block
}

.hero-section .cta-wrapper {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.8s both
}

.hero-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    background: #f5c400;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: .3px;
    box-shadow: 0 8px 24px rgb(245 196 0 / .3);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.hero-section .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / .4), transparent);
    transition: left 0.6s
}

.hero-section .cta-button:hover::before {
    left: 100%
}

.hero-section .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgb(245 196 0 / .4);
    background: #ffd740
}

.hero-section .cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s
}

.hero-section .cta-button:hover svg {
    transform: translateX(4px)
}

.hero-section .reviews-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both
}

.hero-section .reviews-text {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 600
}

.hero-section .stars-wrapper {
    display: flex;
    gap: 4px
}

.hero-section .star-icon {
    width: 22px;
    height: 22px;
    fill: #f5c400
}

.hero-section .review-count {
    font-size: .9rem;
    color: #666;
    font-weight: 500
}

.hero-section .decorative-shape {
    position: absolute;
    z-index: 0
}

.hero-section .shape-1 {
    top: 15%;
    left: 5%;
    width: 80px;
    height: 80px;
    border: 3px solid #f5c400;
    border-radius: 20px;
    opacity: .2;
    animation: rotate 20s linear infinite
}

.hero-section .shape-2 {
    bottom: 20%;
    right: 8%;
    width: 100px;
    height: 100px;
    border: 3px solid #11559b;
    border-radius: 50%;
    opacity: .15;
    animation: rotate 25s linear infinite reverse
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.hero-section .feature-badge {
    position: absolute;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgb(0 0 0 / .08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: fadeIn 1.2s ease-out both
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.hero-section .feature-badge.badge-1 {
    top: 13%;
    left: 3%;
    animation-delay: 1.2s
}

.hero-section .feature-badge.badge-2 {
    bottom: 17%;
    right: 12%;
    animation-delay: 1.4s
}

.hero-section .feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f5c400 0%, #ffd740 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-section .feature-icon svg {
    width: 20px;
    height: 20px;
    fill: #000
}

.hero-section .feature-text {
    font-size: .9rem;
    font-weight: 600;
    color: #2d2d2d
}

@media (max-width: 1200px) {
    .hero-section .content-grid {
        grid-template-columns: 200px 1fr 200px;
        gap: 40px
    }

    .hero-section .feature-badge {
        display: none
    }
}

@media (max-width: 992px) {
    .hero-section .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .hero-section .left-image,
    .hero-section .right-image {
        display: none
    }

    .hero-section .center-content {
        padding: 20px
    }
}

@media (max-width: 576px) {
    .hero-section .content-grid {
        padding: 0 20px
    }

    .hero-section .cta-button {
        padding: 18px 36px;
        font-size: 1rem
    }
}

.hero-section .left-image {
    position: absolute;
    left: 0;
    width: 400px
}

.hero-section .left-image img {
    width: 100%
}

.hero-section .right-image {
    position: absolute;
    right: 0;
    width: 400px
}

.hero-section .right-image img {
    width: 100%
}

.feature-text {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    overflow: hidden
}

.feature-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    transform: translateX(-100%)
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(80px) skewY(8deg)
}

.stats-section {
    background: #fff;
    padding: 0 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px
}

.stats-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f5c400, #11559b, transparent)
}

.stats-section .stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px
}

.stats-section .stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px 21px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid rgb(0 0 0 / .05)
}

.stats-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f5c400, #ffd740);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1)
}

.stats-section .stat-card:hover::before {
    transform: scaleX(1)
}

.stats-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgb(245 196 0 / .15)
}

.stats-section .stat-card:nth-child(2)::before {
    background: linear-gradient(90deg, #11559b, #1976d2)
}

.stats-section .stat-card:nth-child(2):hover {
    box-shadow: 0 12px 40px rgb(17 85 155 / .15)
}

.stats-section .stat-card:nth-child(3)::before {
    background: linear-gradient(90deg, #f5c400, #11559b)
}

.stats-section .stat-card:nth-child(3):hover {
    box-shadow: 0 12px 40px rgb(245 196 0 / .12)
}

.stats-section .stat-card:nth-child(4)::before {
    background: linear-gradient(90deg, #11559b, #7ED957)
}

.stats-section .stat-card:nth-child(4):hover {
    box-shadow: 0 12px 40px rgb(17 85 155 / .12)
}

.stats-section .icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7ED957 0%, #7ED957 100%);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 10px !important;
    position: relative;
    transition: all 0.4s ease
}

.stats-section .stat-card:nth-child(2) .icon-wrapper {
    background: linear-gradient(135deg, #7ED957 0%, #7ED957 100%)
}

.stats-section .stat-card:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg, #7ED957 0%, #7ED957 100%)
}

.stats-section .stat-card:nth-child(4) .icon-wrapper {
    background: linear-gradient(135deg, #7ED957 0%, #7ED957 100%)
}

.stats-section .stat-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg)
}

.stats-section .icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: .3;
    filter: blur(20px);
    z-index: -1
}

.stats-section .icon-wrapper svg {
    width: 21px;
    height: 21px;
    fill: #fff
}

.stats-section .stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 7px
}

.stats-section .stat-value {
    font-size: 21px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px
}

.stats-section .stat-card:nth-child(1) .stat-value {
    background: linear-gradient(135deg, #7ED957 0%, #ffa000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.stats-section .stat-card:nth-child(2) .stat-value {
    background: linear-gradient(135deg, #7ED957 0%, #ffa000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.stats-section .stat-card:nth-child(3) .stat-value {
    background: linear-gradient(135deg, #7ED957 0%, #ffa000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.stats-section .stat-card:nth-child(4) .stat-value {
    background: linear-gradient(135deg, #7ED957 0%, #ffa000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.stats-section .stat-subtitle {
    font-size: .85rem;
    color: #868e96;
    font-weight: 500
}

.stats-section .decorative-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5c400 0%, transparent);
    opacity: .05;
    bottom: -40px;
    right: -40px;
    transition: all 0.4s ease
}

.stats-section .stat-card:hover .decorative-circle {
    transform: scale(1.2);
    opacity: .08
}

@media (max-width: 1200px) {
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0
    }

    .stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .stats-section .stat-card {
        padding: 32px 24px
    }

    .stats-section .stat-value {
        font-size: 2.4rem
    }
}

@media (max-width: 576px) {
    .stats-section .stat-value {
        font-size: 2rem
    }

    .stats-section .icon-wrapper {
        width: 56px;
        height: 56px
    }

    .stats-section .icon-wrapper svg {
        width: 28px;
        height: 28px
    }
}

.about-section {
    background: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden
}

.about-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(245 196 0 / .05) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: 1
}

.about-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(17 85 155 / .05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 1
}

.about-section .container {
    position: relative;
    z-index: 2
}

.about-section .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5c400 0%, #ffd740 100%);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 24px
}

.about-section .main-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px
}

.about-section .highlight {
    background: linear-gradient(135deg, #7ED957 0%, #11559b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.about-section .description {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 32px
}

.about-section .features-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px
}

.about-section .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px
}

.about-section .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #2d2d2d;
    font-weight: 600
}

.about-section .features-list li svg {
    width: 24px;
    height: 24px;
    fill: #7ED957;
    flex-shrink: 0;
    margin-top: 2px
}

.about-section .conclusion {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000
}

.about-section .image-wrapper {
    position: relative;
    overflow: hidden
}

.about-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: 0
}

.about-section .image-placeholder {
    width: 100%;
    height: 100%
}

.about-section .button-wrapper {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px
}

.about-section .explore-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    background: #f5c400;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgb(245 196 0 / .3);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.about-section .explore-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / .4), transparent);
    transition: left 0.6s
}

.about-section .explore-button:hover::before {
    left: 100%
}

.about-section .explore-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgb(245 196 0 / .4);
    background: #ffd740
}

.about-section .explore-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s
}

.about-section .explore-button:hover svg {
    transform: translateX(4px)
}

.about-section .expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(.4, 0, .2, 1), opacity 0.6s ease;
    opacity: 0
}

.about-section .expanded-content.active {
    max-height: 2000px;
    opacity: 1
}

.about-section .expanded-inner {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 40px rgb(0 0 0 / .06);
    border: 1px solid rgb(245 196 0 / .1)
}

.about-section .expanded-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    letter-spacing: -1px
}

.about-section .expanded-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 24px
}

.about-section .stats-highlight {
    background: linear-gradient(135deg, #f5c400 0%, #11559b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    font-weight: 700
}

.about-section .challenge-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #f5c400;
    box-shadow: 0 4px 16px rgb(0 0 0 / .04);
    margin-bottom: 20px
}

.about-section .challenge-item:nth-child(even) {
    border-left-color: #11559b
}

.about-section .challenge-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px
}

.about-section .challenge-desc {
    font-size: .95rem;
    color: #666;
    line-height: 1.6
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0
    }

    .about-section .image-wrapper {
        height: 400px;
        margin-top: 40px
    }

    .about-section .expanded-inner {
        padding: 40px 24px
    }

    .about-section .explore-button {
        padding: 18px 36px;
        font-size: 1rem
    }
}

.stats-numbers-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fef8f0 0%, #ffffff 100%)
}

.stats-numbers-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgb(245 196 0 / .03) 0%, transparent 70%);
    top: -400px;
    left: 50%;
    transform: translateX(-50%)
}

.stats-numbers-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative
}

.stats-numbers-section .badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(245 196 0 / .1);
    border: 1px solid rgb(245 196 0 / .3);
    color: #f5c400;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px
}

.stats-numbers-section .badge-top svg {
    width: 16px;
    height: 16px;
    fill: #f5c400
}

.stats-numbers-section .section-title {
    font-size: 48px;
    font-weight: 900 !important;
    color: #000;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 10px
}

.stats-numbers-section .section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #666;
    letter-spacing: -.3px
}

.stats-numbers-section .stat-card {
    background: #fff0;
    border: none;
    padding: 50px 35px;
    height: 100%;
    position: relative
}

.stats-numbers-section .middle-card-wrapper {
    background: rgb(245 245 245 / .3);
    border-radius: 20px;
    overflow: hidden
}

.stats-numbers-section .middle-border-left,
.stats-numbers-section .middle-border-right {
    position: absolute;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, #f5c400 30%, #11559b 70%, transparent 100%);
    z-index: 2;
    pointer-events: none
}

.stats-numbers-section .middle-border-left {
    left: 0
}

.stats-numbers-section .middle-border-right {
    right: 0
}

.stats-numbers-section .stat-number {
    font-size: 64px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 1;
    margin-top: 0
}

.stats-numbers-section .stat-description {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #4a4a4a;
    font-weight: 500
}

@media (max-width: 992px) {
    .stats-numbers-section {
        padding: 80px 0
    }

    .stats-numbers-section .section-header {
        margin-bottom: 60px
    }

    .stats-numbers-section .stat-card {
        padding: 40px 30px;
        margin-bottom: 24px
    }

    .stats-numbers-section .middle-border-left,
    .stats-numbers-section .middle-border-right {
        top: 5%;
        bottom: 5%
    }
}

@media (max-width: 768px) {
    .stats-numbers-section {
        padding: 60px 0
    }

    .stats-numbers-section .stat-card {
        padding: 35px 24px
    }

    .stats-numbers-section .stat-number {
        font-size: 3.5rem
    }

    .stats-numbers-section .middle-card-wrapper {
        border-radius: 16px
    }
}

.logos-scroller {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin: 0 !important;
    padding: 0
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite
}

.partner-item {
    flex: 0 0 auto;
    width: 180px;
    text-align: center
}

.rtl .logos-track {
    animation-direction: reverse
}

.ltr .logos-track {
    animation-direction: normal
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.logos-scroller:hover .logos-track {
    animation-play-state: paused
}

.partners-section {
    background: #fff;
    padding: 50px 0
}

.partners-section .section-title {
    font-size: 48px;
    font-weight: 700 !important;
    text-align: center;
    margin-bottom: 20px;
    color: #000
}

.partners-section .section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.partners-logo {
    height: 104px;
    object-fit: contain;
    transition: all 0.4s ease
}

.partners-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1)
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s ease
}

.partner-item:hover {
    background: rgb(255 255 255 / .8);
    border-radius: 12px
}

@media (max-width: 768px) {
    .partners-section {
        padding: 80px 0
    }

    .partners-logo {
        height: 50px
    }
}

section.marketing-services-section.one {
    background: #2e2e27
}

section.marketing-services-section.one .content-wrapper {
    background: #fff0;
    border: none
}

section.marketing-services-section.one .content-wrapper .image-box {
    background: #fff
}

section.marketing-services-section.one .content-wrapper h2.section-title {
    color: #fff
}

section.marketing-services-section.one .content-wrapper p.section-description {
    color: #fff
}

section.marketing-services-section.one .content-wrapper h3.category-title {
    color: #fff
}

section.marketing-services-section.one .content-wrapper .section-badge {
    color: #fff
}

section.marketing-services-section.one {
    background: #2e2e27
}

section.marketing-services-section.one .content-wrapper {
    background: #fff0;
    border: none
}

section.marketing-services-section.one .content-wrapper .image-box {
    background: #fff
}

section.marketing-services-section.one .content-wrapper h2.section-title {
    color: #fff
}

section.marketing-services-section.one .content-wrapper p.section-description {
    color: #fff
}

section.marketing-services-section.one .content-wrapper h3.category-title {
    color: #fff
}

section.marketing-services-section.one .content-wrapper .section-badge {
    color: #fff
}

section.marketing-services-section.two {
    background: #fff
}

section.marketing-services-section.two .content-wrapper {
    border: none;
    background: #fff0
}

section.marketing-services-section.three {
    background: #f8f9fa
}

section.marketing-services-section.three .content-wrapper {
    border: none
}

.sticky-sections-wrapper {
    position: relative
}

.marketing-services-section {
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0
}

.marketing-services-section .content-wrapper {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 0;
    padding: 0;
    width: 100%
}

.marketing-services-section .image-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgb(0 0 0 / .15);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.marketing-services-section .service-card {
    position: relative
}

button.read-more-btn {
    position: absolute;
    top: -13px;
    right: 0
}

.marketing-services-section .image-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #f5c400 0%, #11559b 100%);
    opacity: .1;
    border-radius: 50%
}

.marketing-services-section .image-icon {
    position: relative;
    z-index: 2;
    text-align: center
}

.marketing-services-section .image-icon i {
    font-size: 150px;
    background: linear-gradient(135deg, #f5c400 0%, #11559b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    display: inline-block;
    animation: pulse 3s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

.marketing-services-section .decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.marketing-services-section .circle {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    opacity: .2
}

.marketing-services-section .circle-1 {
    width: 120px;
    height: 120px;
    border-color: #f5c400;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite
}

.marketing-services-section .circle-2 {
    width: 80px;
    height: 80px;
    border-color: #11559b;
    bottom: 15%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse
}

.marketing-services-section .circle-3 {
    width: 60px;
    height: 60px;
    border-color: #f5c400;
    top: 50%;
    right: 5%;
    animation: float 7s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.marketing-services-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ededed36;
    color: #12589e;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    text-transform: uppercase;
    border: 1px solid #ddd
}

.marketing-services-section .section-badge i {
    font-size: 16px
}

.marketing-services-section .section-title {
    font-size: 42px;
    font-weight: 800 !important;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.2;
    padding: 10px 0
}

.marketing-services-section .section-title .highlight {
    background: linear-gradient(90deg, #7ED957 0%, #11559b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.marketing-services-section .section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px
}

.marketing-services-section .content-wrapper a.theme-btn {
    background: #000 !important;
    color: #fff;
    display: inline-flex
}

.marketing-services-section .content-wrapper a.theme-btn:hover {
    background: transparent !important;
    border: 1px solid #7ED957
}

.marketing-services-section .service-card {
    margin-bottom: 30px
}

.marketing-services-section .category-header {
    margin-bottom: 20px
}

.marketing-services-section .category-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px
}

.marketing-services-section .category-title i {
    color: #11559b;
    font-size: 24px
}

.marketing-services-section .services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative
}

.marketing-services-section .service-item {
    padding: 4px 12px;
    background: #fff;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: 1.5px solid #d0d0d0;
    text-align: center;
    font-size: 14px
}

.marketing-services-section .services-list.show-all .service-item {
    display: block
}

.marketing-services-section .service-item:hover {
    background: linear-gradient(135deg, #7ED957, #11559b);
    border-color: #7ED957;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(17 85 155 / .2)
}

.marketing-services-section .service-item:hover span {
    color: #fff
}

.marketing-services-section .service-item span {
    color: #333;
    font-size: 13px;
    font-weight: 600
}

.marketing-services-section .tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative
}

.marketing-services-section .tool-card {
    padding: 4px 12px;
    background: #fff;
    border-radius: 100px;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1.5px solid #d0d0d0;
    text-align: center
}

.marketing-services-section .tool-card:nth-child(n+6) {
    display: none
}

.marketing-services-section .tools-grid.show-all .tool-card {
    display: block
}

.marketing-services-section .tool-card:hover {
    background: linear-gradient(135deg, #7ED957, #11559b);
    border-color: #7ED957;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(245 196 0 / .25)
}

.marketing-services-section .tool-card:hover span {
    color: #fff
}

.marketing-services-section .tool-card span {
    display: block;
    color: #333;
    font-size: 13px;
    font-weight: 600
}

.marketing-services-section .read-more-btn {
    display: inline-block;
    margin-top: 11px;
    padding: 4px 11px;
    background: linear-gradient(90deg, #7ED957 0%, #11559b 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease
}

.marketing-services-section .read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(245 196 0 / .3)
}

.marketing-services-section .read-more-btn i {
    margin-left: 5px;
    font-size: 10px
}

.marketing-services-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #7ED957 0%, #11559b 100%);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgb(245 196 0 / .3)
}

.marketing-services-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgb(245 196 0 / .4);
    color: #fff
}

.marketing-services-section .cta-button i {
    transition: transform 0.3s ease;
    font-size: 18px
}

.marketing-services-section .cta-button:hover i {
    transform: translateX(5px)
}

@media (max-width: 768px) {
    .marketing-services-section .section-title {
        font-size: 32px
    }

    .marketing-services-section .image-icon i {
        font-size: 100px
    }

    .marketing-services-section {
        height: auto;
        min-height: 100vh
    }
}

.industry-section {
    background: #f8f7f3;
    color: #1f2937;
    padding: 50px 0
}

.industry-section .section-heading {
    font-size: 48px;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #111827
}

.industry-section .section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto 40px;
    color: #4b5563;
    opacity: 1
}

.industry-section .accent-line {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #7ED957, #11559b);
    margin: 0 auto 80px;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left
}

.industry-section .industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto
}

.industry-section .industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    transition: all 0.3s ease;
    transform: translateY(0)
}

.industry-section .industry-tag:hover {
    background: #11559b;
    color: #fff;
    border-color: #11559b;
    box-shadow: 0 10px 20px rgb(17 85 155 / .15);
    transform: translateY(-4px)
}

.industry-section .tag-icon {
    font-size: 1.4rem
}

@media (max-width: 768px) {
    .industry-section .section-heading {
        font-size: 2.8rem
    }

    .industry-section .industry-tags {
        gap: 12px
    }

    .industry-section .industry-tag {
        padding: 10px 20px;
        font-size: 1rem
    }
}

.results-section {
    background: #fff;
    color: #1e293b;
    padding: 50px 0;
    overflow: hidden
}

.results-section .section-title {
    font-size: 48px;
    font-weight: 800 !important;
    line-height: 47px;
    margin-bottom: 12px;
    color: #0f172a
}

.results-section .section-title .highlight {
    color: #11559b;
    font-size: 30px !important;
    line-height: 38px !important;
    display: block;
    padding-top: 10px
}

.results-section .intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #475569;
    max-width: 600px;
    margin-bottom: 60px
}

.results-section .service-item {
    padding: 18px 14px;
    border-bottom: 1px solid #11559b;
    cursor: pointer;
    margin-bottom: 18px;
    border-radius: 0
}

.results-section .service-item:last-child {
    border-bottom: none
}

.results-section .service-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.results-section .service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #11559b;
    transition: color 0.3s ease
}

.results-section .service-item.active .service-title {
    color: #000
}

.results-section .toggle-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #000;
    transition: transform 0.4s ease;
    width: 40px;
    height: 40px;
    background: #7ED957;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 500
}

.results-section .service-item.active .toggle-icon {
    transform: rotate(45deg);
    color: #000
}

.results-section .service-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    transition: all 0.5s ease;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7
}

.results-section .service-item.active .service-content {
    max-height: 500px;
    padding-top: 5px
}

.results-section .highlight {
    color: #11559b;
    font-weight: 600
}

@media (max-width: 992px) {
    .results-section {
        padding: 100px 0
    }

    .results-section .section-title {
        font-size: 2.8rem;
        text-align: center
    }

    .results-section .intro-text {
        text-align: center;
        max-width: 100%
    }

    .results-section .service-title {
        font-size: 1.5rem
    }
}

.testimonials-section {
    background: #000;
    padding: 50px 0;
    text-align: center;
    color: #1e293b
}

.testimonials-section .section-title {
    font-size: 48px;
    font-weight: 800 !important;
    margin-bottom: 9px;
    color: #fff
}

.testimonials-section .section-subtitle {
    font-size: 20px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 40px
}

.testimonials-section .testimonial-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgb(0 0 0 / .08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgb(0 0 0 / .12)
}

.testimonials-section .video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: #000
}

.testimonials-section .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.testimonials-section .testimonial-card:hover .video-thumb {
    transform: scale(1.08)
}

.testimonials-section .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 15px 35px rgb(249 207 47 / .4);
    transition: all 0.4s ease
}

s .testimonials-section .testimonial-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.15)
}

.testimonials-section .card-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left
}

.testimonials-section .quote-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 24px;
    flex-grow: 1
}

.testimonials-section .client-info {
    display: flex;
    align-items: center;
    gap: 20px
}

.testimonials-section .client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #7ED957
}

.testimonials-section .client-details h5 {
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a
}

.testimonials-section .client-details p {
    color: #64748b;
    font-size: .95rem;
    margin-bottom: 8px
}

.testimonials-section .stars {
    color: #7ED957;
    font-size: 1.3rem;
    letter-spacing: 4px
}

@media (max-width: 992px) {
    .testimonials-section .section-title {
        font-size: 2.8rem
    }

    .testimonials-section .testimonial-card {
        margin-bottom: 40px
    }
}

.faq-section {
    background: #fff;
    padding: 50px 0;
    color: #1e293b
}

.faq-section .section-title {
    font-size: 48px;
    font-weight: 800 !important;
    text-align: center;
    margin-bottom: 10px;
    color: #0f172a
}

.faq-section .section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 40px
}

.faq-section .faq-item {
    background: #f8fafc;
    border-radius: 20px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgb(0 0 0 / .05);
    transition: all 0.4s ease
}

.faq-section .faq-item:hover {
    box-shadow: 0 15px 40px rgb(0 0 0 / .1);
    transform: translateY(-4px)
}

.faq-section .faq-header {
    padding: 20px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff0;
    transition: background 0.3s ease;
    border: 1px solid #ddd;
    border-radius: 20px
}

.faq-section .faq-item.active .faq-header {
    background: #11559b;
    color: #fff
}

.faq-section .faq-question {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease
}

.faq-section .faq-item.active .faq-question {
    color: #fff
}

.faq-section .faq-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.faq-section .faq-list .faq-item {
    width: 100%
}

.faq-section .toggle-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #11559b;
    transition: all 0.4s ease;
    width: 40px;
    text-align: center
}

.faq-section .faq-item.active .toggle-icon {
    transform: rotate(45deg);
    color: #7ED957
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 40px;
    transition: all 0.5s ease;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569
}

.faq-section .faq-item.active .faq-answer {
    max-height: 400px;
    padding: 27px 40px 40px
}

.faq-section .faq-answer strong {
    color: #11559b
}

@media (max-width: 992px) {
    .faq-section .section-title {
        font-size: 2.8rem
    }

    .faq-section .faq-question {
        font-size: 1.35rem
    }

    .faq-section .faq-header {
        padding: 24px 30px
    }

    .faq-section .faq-answer {
        padding: 0 30px 30px
    }
}

.blog-section {
    background: #fff;
    padding: 50px 0;
    color: #1e293b;
    background: #f8fafc
}

.blog-section .section-title {
    font-size: 48px;
    font-weight: 800 !important;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
    position: relative
}

.blog-section .blog-card {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgb(0 0 0 / .06);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column
}

.blog-section .blog-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgb(0 0 0 / .12)
}

.blog-section .blog-image {
    position: relative;
    height: 320px;
    overflow: hidden
}

.blog-section .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease
}

.blog-section .blog-card:hover .blog-image img {
    transform: scale(1.15)
}

.blog-section .blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(17 85 155 / .7), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease
}

.blog-section .blog-card:hover .blog-overlay {
    opacity: 1
}

.blog-section .card-body {
    padding: 27px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 !important;
    padding-bottom: 30px
}

.blog-section .blog-title {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-section .blog-card:hover .blog-title {
    color: #11559b
}

.blog-section .blog-meta {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 32px
}

.blog-section .card-body a.theme-btn {
    display: inline-flex;
    width: auto !important;
    align-items: center;
    min-width: 100px !important;
    width: 175px !important
}

.blog-section .btn-read {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #fff0;
    border: 2px solid #7ED957;
    color: #11559b;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    align-self: flex-start
}

.blog-section .btn-read:hover {
    background: #7ED957;
    color: #11559b;
    transform: translateX(10px)
}

.blog-section .btn-read::after {
    content: '→';
    font-size: 1.4rem;
    transition: transform 0.3s ease
}

.blog-section .btn-read:hover::after {
    transform: translateX(6px)
}

@media (max-width: 992px) {
    .blog-section .section-title {
        font-size: 3rem;
        margin-bottom: 80px
    }

    .blog-section .blog-card {
        margin-bottom: 50px
    }

    .blog-section .blog-title {
        font-size: 1.5rem
    }

    .blog-section .card-body {
        padding: 36px
    }
}

.custom-timeline-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #0a0e17;
    color: #fff;
    overflow-x: hidden
}

.custom-timeline-section .yearly-timeline-wrapper {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #0a0e17 0%, #111827 100%);
    min-height: 100vh
}

.custom-timeline-section .timeline-main-title {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 80px;
    position: relative;
    line-height: 1.2
}

.custom-timeline-section .timeline-main-title span {
    position: relative;
    display: inline-block
}

.custom-timeline-section .white-text {
    color: #fff
}

.custom-timeline-section .text-center-align {
    text-align: center
}

.custom-timeline-section .font-weight-normal {
    font-weight: 400
}

.custom-timeline-section .timeline-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}

.custom-timeline-section .year-content-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    margin-bottom: 85px;
    min-height: auto;
    margin-top: 44px
}

.custom-timeline-section .single-year-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    gap: 121px
}

.custom-timeline-section .year-visual-image::before {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #ff00;
    content: "";
    border: 2px solid #7ED957;
    left: 30px;
    top: -30px;
    z-index: -1
}

.custom-timeline-section .single-year-content.active-year {
    display: flex;
    opacity: 1;
    animation: fadeInUpCustom 0.8s ease forwards
}

.custom-timeline-section .single-year-content.previous-year {
    display: none
}

@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.custom-timeline-section .single-year-content figure {
    width: 43%;
    margin: 0;
    position: relative;
    transform: rotate(12deg)
}

.custom-timeline-section .year-visual-image img {
    width: 100%;
    border: 0;
    height: 325px;
    object-fit: cover;
    border-radius: 0
}

.custom-timeline-section .year-visual-image {
    width: 100%;
    height: 337px;
    object-fit: cover;
    transition: transform 0.8s ease;
    border-radius: 12px
}

.custom-timeline-section .single-year-content.active-year .year-visual-image {
    transform: scale(1.02)
}

.custom-timeline-section .year-title-container {
    margin-bottom: 30px;
    position: relative;
    top: auto;
    margin-bottom: 159px
}

.custom-timeline-section .year-visual-image::before {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #ff00;
    content: "";
    border: 2px solid #7ED957;
    left: 30px;
    top: -30px;
    z-index: -1
}

.year-title-container .year-f {
    font-size: 202px;
    position: absolute;
    top: -124px;
    font-weight: 700;
    margin-left: -127px;
    color: #7ED957
}

.custom-timeline-section .content {
    position: relative
}

.custom-timeline-section p.year-description {
    font-size: 18px !important;
    font-weight: 300;
    color: #fff !important
}

.custom-timeline-section .flex-display {
    display: flex;
    gap: 8px
}

.custom-timeline-section .digit-container {
    position: relative;
    overflow: hidden;
    height: 80px
}

.custom-timeline-section .year-digit {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
    text-shadow: 0 5px 15px rgb(0 0 0 / .5);
    transition: transform 0.3s ease
}

.custom-timeline-section .single-year-content.active-year .year-digit {
    animation: digitPopCustom 0.5s ease forwards;
    animation-delay: calc(var(--digit-index-custom) * 0.1s)
}

@keyframes digitPopCustom {
    0% {
        transform: translateY(100px);
        opacity: 0
    }

    70% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.custom-timeline-section .year-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 0;
    padding-right: 20px;
    font-weight: 500
}

.custom-timeline-section .font-size-base {
    font-size: 1.1rem
}

.custom-timeline-section .font-weight-medium {
    font-weight: 500
}

.custom-timeline-section .timeline-scroller-container {
    margin-top: 60px;
    position: relative;
    width: 100%
}

.custom-timeline-section .timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative
}

.custom-timeline-section .timeline-progress-line {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(255 255 255 / .2);
    z-index: 1
}

.custom-timeline-section .timeline-progress-line.progress-active {
    background: linear-gradient(90deg, #3b82f6 0%, #3b82f6 30%, rgb(255 255 255 / .2) 30%)
}

.custom-timeline-section .year-timeline-tab {
    position: relative;
    z-index: 2;
    cursor: pointer;
    text-align: center;
    padding: 0 5px;
    transition: all 0.3s ease
}

.custom-timeline-section .year-timeline-tab:hover .timeline-year-label {
    color: #60a5fa;
    transform: translateY(-5px)
}

.custom-timeline-section .year-timeline-tab.active-tab .timeline-year-label {
    color: #7ED957;
    font-weight: 600;
    transform: translateY(-5px)
}

.custom-timeline-section .timeline-dot {
    display: block;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    margin: -3px auto 6px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #fff0
}

.custom-timeline-section .year-timeline-tab:hover .timeline-dot {
    background: #60a5fa;
    transform: scale(1.2)
}

.custom-timeline-section .year-timeline-tab.active-tab .timeline-dot {
    background: #7ED957;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgb(255 255 255 / 30%)
}

.custom-timeline-section .year-timeline-tab.progress-tab .timeline-dot {
    background: #7ED957
}

.custom-timeline-section .timeline-year-label {
    font-size: 1.1rem;
    color: rgb(255 255 255 / .7);
    transition: all 0.3s ease;
    white-space: nowrap
}

.custom-timeline-section .font-size-medium {
    font-size: 1.25rem
}

@media (max-width: 1200px) {
    .custom-timeline-section .year-content-container {
        flex-direction: column;
        gap: 40px
    }

    .custom-timeline-section .single-year-content figure {
        width: 100%;
        max-width: 700px;
        margin: 0 auto
    }

    .custom-timeline-section .timeline-horizontal {
        overflow-x: auto;
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 40px
    }
}

@media (max-width: 768px) {
    .custom-timeline-section .timeline-main-title {
        font-size: 2.5rem
    }

    .custom-timeline-section .year-digit {
        font-size: 3.5rem
    }

    .custom-timeline-section .digit-container {
        height: 60px
    }

    .custom-timeline-section .year-visual-image {
        height: 300px
    }

    .custom-timeline-section .timeline-main-container {
        padding: 0 20px
    }

    .custom-timeline-section .year-description {
        font-size: 1rem;
        padding-right: 0
    }
}

@media (max-width: 576px) {
    .custom-timeline-section .timeline-main-title {
        font-size: 2rem;
        margin-bottom: 50px
    }

    .custom-timeline-section .year-digit {
        font-size: 2.8rem
    }

    .custom-timeline-section .digit-container {
        height: 50px
    }

    .custom-timeline-section .yearly-timeline-wrapper {
        padding: 60px 0
    }
}

.clutch-testimonial-section {
    padding: 50px 0;
    background: #fdfaec;
    position: relative
}

.arrow-testi {
    position: absolute;
    top: 192px;
    right: 1px;
    display: flex;
    gap: 20px;
    width: 100px;
    left: 86.5%
}

.arrow-testi i {
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #fff
}

.clutch-testimonial-section .section-header {
    margin-bottom: 60px
}

.clutch-testimonial-section .section-title {
    font-size: 48px;
    font-weight: 800 !important;
    text-align: center;
    margin-bottom: 0;
    color: #0f172a;
    position: relative
}

.clutch-testimonial-section .section-subtitle {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    text-align: center;
    margin: 0 auto
}

.clutch-testimonial-section .clutch-testimonials-container {
    display: flex;
    gap: 30px;
    align-items: stretch
}

.clutch-testimonial-section .clutch-card {
    min-width: 480px;
    width: 480px;
    background: linear-gradient(180deg, #000000 0%, #1a4d5c 100%);
    border-radius: 30px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    flex-shrink: 0
}

.clutch-testimonial-section .clutch-logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 32px
}

.clutch-testimonial-section .stars {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    justify-content: center
}

.clutch-testimonial-section .star {
    color: #ff3d57;
    font-size: 24px
}

.clutch-testimonial-section .clutch-btn {
    background: #fff0;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 60px
}

.clutch-testimonial-section .clutch-btn:hover {
    background: #fff;
    color: #000
}

.clutch-testimonial-section .clutch-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px
}

.clutch-testimonial-section .clutch-icon {
    width: 24px;
    height: 24px;
    background: #ff3d57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px
}

.clutch-testimonial-section .slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 7px 0
}

.clutch-testimonial-section .clutch-testimonials-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease
}

.clutch-testimonial-section .clutch-testimonial-card {
    min-width: 383px;
    width: 322px;
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    height: 421px;
    border: 1px solid
}

.clutch-testimonial-section .clutch-testimonial-card:hover {
    transform: translateY(-5px)
}

.clutch-testimonial-section .client-header {
    display: flex;
    align-items: start;
    gap: 13px;
    margin-bottom: 9px
}

.clutch-testimonial-section .client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.clutch-testimonial-section .client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.clutch-testimonial-section .client-info {
    flex: 1
}

.clutch-testimonial-section .client-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px
}

.clutch-testimonial-section .client-position {
    font-size: 12px;
    color: #666;
    margin-bottom: 0
}

.clutch-testimonial-section .client-stars {
    display: flex;
    gap: 6px
}

.clutch-testimonial-section .divider {
    width: 100%;
    height: 1px;
    background: #d0d0d0;
    margin: 25px 0
}

.clutch-testimonial-section .clutch-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    height: 190px;
    overflow: auto;
    padding-right: 10px
}

.clutch-testimonial-section .pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px
}

.clutch-testimonial-section .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease
}

.clutch-testimonial-section .dot.active {
    background: #666;
    width: 30px;
    border-radius: 5px
}

@media (max-width: 1200px) {
    .clutch-testimonial-section .clutch-testimonials-container {
        flex-direction: column
    }

    .clutch-testimonial-section .clutch-card {
        width: 100%;
        min-width: 100%
    }

    .clutch-testimonial-section .clutch-testimonial-card {
        width: 100%;
        min-width: 100%
    }
}

@media (max-width: 768px) {
    .clutch-testimonial-section {
        padding: 50px 0
    }

    .clutch-testimonial-section .section-title {
        font-size: 32px
    }

    .clutch-testimonial-section .section-subtitle {
        font-size: 16px
    }

    .clutch-testimonial-section .clutch-card,
    .clutch-testimonial-section .clutch-testimonial-card {
        padding: 35px 25px;
        min-width: 100%
    }

    .clutch-testimonial-section .clutch-logo {
        font-size: 42px
    }
}

.contact-section {
    background: #000;
    padding: 80px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #fff
}

.contact-section * {
    box-sizing: border-box
}

.contact-section .section-header {
    margin-bottom: 60px
}

.contact-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2
}

.contact-section .section-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.6
}

.contact-section .contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start
}

.contact-section .expert-card {
    flex: 0 0 auto;
    width: 520px;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    border-radius: 30px;
    padding: 50px 45px;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff
}

.contact-section .expert-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(255 255 255 / .1) 0%, transparent 70%);
    pointer-events: none
}

.contact-section .expert-avatars {
    display: flex;
    gap: -15px;
    margin-bottom: 30px
}

.contact-section .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgb(255 255 255 / .3);
    overflow: hidden;
    position: relative;
    z-index: 1
}

.contact-section .avatar:nth-child(2) {
    margin-left: -20px
}

.contact-section .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.contact-section .expert-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3
}

.contact-section .expert-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(255 255 255 / .9);
    margin-bottom: 35px
}

.contact-section .action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center
}

.contact-section .schedule-btn {
    background: #fff0;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease
}

.contact-section .schedule-btn:hover {
    background: #fff;
    color: #1e5a6f
}

.contact-section .contact-icons {
    display: flex;
    gap: 12px
}

.contact-section .icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 22px
}

.contact-section .icon-btn.clutch {
    background: #4285f4
}

.contact-section .icon-btn.whatsapp {
    background: #25d366
}

.contact-section .icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgb(255 255 255 / .3)
}

.contact-section .call-us-section {
    margin-top: 10px
}

.contact-section .call-label {
    font-size: 14px;
    color: rgb(255 255 255 / .8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.contact-section .phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.contact-section .phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600
}

.contact-section .flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px
}

.contact-section .form-wrapper {
    flex: 1;
    max-width: 720px
}

.contact-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px
}

.contact-section .form-group {
    position: relative
}

.contact-section .form-group.full-width {
    grid-column: 1 / -1
}

.contact-section .form-input,
.contact-section .form-select,
.contact-section .form-textarea {
    width: 100%;
    background: #fff0;
    border: none;
    border-bottom: 2px solid rgb(255 255 255 / .2);
    color: #fff;
    padding: 15px 0;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease
}

.contact-section .form-input:focus,
.contact-section .form-select:focus,
.contact-section .form-textarea:focus {
    border-bottom-color: #3A6EA5;

}

.contact-section .form-input::placeholder,
.contact-section .form-textarea::placeholder {
    color: rgb(255 255 255 / .5)
}

.contact-section .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px
}

.contact-section .form-select option {
    background: #1a1a1a;
    color: #fff
}

.contact-section .phone-input-group {
    display: flex;
    gap: 10px
}

.contact-section .country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    border-bottom: 2px solid rgb(255 255 255 / .2);
    min-width: 80px
}

.contact-section .form-textarea {
    resize: vertical;
    min-height: 80px
}

.contact-section .captcha-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px
}

.contact-section .captcha-input {
    max-width: 150px
}

.contact-section .captcha-text {
    color: rgb(255 255 255 / .5);
    font-size: 14px
}

.contact-section .submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.contact-section .submit-btn {
    background: linear-gradient(135deg, #3A6EA5, #3A6EA5);
    color: #fff;
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.contact-section .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgb(58 110 165 / .4);
}

.contact-section .email-info {
    color: rgb(255 255 255 / .7);
    font-size: 14px
}

.contact-section .email-link {
    color: #4da6ff;
    text-decoration: none;
    transition: color 0.3s ease
}

.contact-section .email-link:hover {
    color: #7ED957
}

.contact-section .job-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgb(255 255 255 / .1);
    font-size: 14px;
    color: rgb(255 255 255 / .7)
}

.contact-section .job-link {
    color: #4da6ff;
    text-decoration: none;
    transition: color 0.3s ease
}

.contact-section .job-link:hover {
    color: #7ED957
}

@media (max-width: 1200px) {
    .contact-section .contact-wrapper {
        flex-direction: column
    }

    .contact-section .expert-card {
        width: 100%
    }

    .contact-section .form-wrapper {
        max-width: 100%
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0
    }

    .contact-section .section-title {
        font-size: 36px
    }

    .contact-section .form-row {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .contact-section .expert-card {
        padding: 35px 25px
    }

    .contact-section .expert-title {
        font-size: 26px
    }

    .contact-section .submit-row {
        flex-direction: column;
        align-items: flex-start
    }
}

.problems-section {
    background: #000;
    padding: 50px 0;
    position: relative;
    overflow: hidden
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5c400' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .4
}

.problems-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1
}

.problems-section .section-subtitle {
    color: #7ED957;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgb(245 196 0 / .1), rgb(17 85 155 / .1));
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgb(245 196 0 / .3)
}

.problems-section .section-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 4px 20px rgb(245 196 0 / .3)
}

.problems-section .problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1
}

.problems-section .problem-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    border: 2px solid rgb(245 196 0 / .1);
    box-shadow: 0 20px 60px rgb(0 0 0 / .5);
    overflow: hidden
}

.problems-section .problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7ED957, #11559b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1)
}

.problems-section .problem-card:hover::before {
    transform: scaleX(1)
}

.problems-section .problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgb(245 196 0 / .3), 0 0 40px rgb(17 85 155 / .2);
    border-color: rgb(245 196 0 / .3)
}

.problems-section .card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7ED957 0%, #11559b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgb(245 196 0 / .4);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1)
}

.problems-section .problem-card:hover .card-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgb(245 196 0 / .5)
}

.problems-section .card-icon-wrapper i {
    font-size: 36px;
    color: #fff
}

.problems-section .card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 72px;
    font-weight: 900;
    color: rgb(245 196 0 / .08);
    line-height: 1;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1)
}

.problems-section .problem-card:hover .card-number {
    color: rgb(245 196 0 / .15);
    transform: scale(1.1)
}

.problems-section .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.4;
    position: relative;
    z-index: 1
}

.problems-section .card-description {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1
}

.problems-section .highlight {
    color: #11559b;
    font-weight: 600;
    position: relative;
    background: linear-gradient(to right, rgb(245 196 0 / .15), rgb(17 85 155 / .1));
    padding: 2px 6px;
    border-radius: 4px
}

.problems-section .card-graph {
    width: 100%;
    height: 60px;
    margin-top: 20px;
    position: relative
}

.problems-section .stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgb(245 196 0 / .15), rgb(17 85 155 / .1));
    padding: 8px 16px;
    border-radius: 50px;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #11559b;
    border: 1px solid rgb(245 196 0 / .3)
}

.problems-section .stats-badge i {
    font-size: 14px;
    color: #7ED957
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.problems-section .floating-shape {
    position: absolute;
    opacity: .08;
    animation: float 6s ease-in-out infinite
}

.problems-section .shape-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s
}

.problems-section .shape-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s
}

.problems-section .shape-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 4s
}

.problems-section .accent-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7ED957, #11559b, transparent);
    opacity: .3
}

.problems-section .accent-line-1 {
    top: 20%;
    left: 0;
    right: 0;
    animation: slideRight 10s linear infinite
}

.problems-section .accent-line-2 {
    bottom: 30%;
    left: 0;
    right: 0;
    animation: slideLeft 12s linear infinite
}

@keyframes slideRight {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

@media (max-width: 768px) {
    .problems-section {
        padding: 60px 0
    }

    .problems-section .section-title {
        font-size: 32px
    }

    .problems-section .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .problems-section .problem-card {
        padding: 30px 25px
    }

    .problems-section .card-number {
        font-size: 56px;
        top: 20px;
        right: 20px
    }
}

.tabs-wrapper.case-study-wrapper {
    padding: 50px 0
}

.case-study-wrapper .tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px
}

.case-study-wrapper .custom-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px;
    border-radius: 16px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    flex-wrap: wrap;
    justify-content: center
}

.tabs-wrapper.case-study-wrapper .section-heading {
    font-size: 48px;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #111827
}

.tabs-wrapper.case-study-wrapper .section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto 40px;
    color: #4b5563;
    opacity: 1
}

.tabs-wrapper.case-study-wrapper .section-header {
    text-align: center
}

.case-study-wrapper .custom-tabs::-webkit-scrollbar {
    height: 6px
}

.case-study-wrapper .custom-tabs::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px
}

.case-study-wrapper .custom-tabs::-webkit-scrollbar-thumb {
    background: #7ED957;
    border-radius: 10px
}

.case-study-wrapper .tab-btn {
    background: #fff0;
    border: none;
    color: #495057;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    box-shadow: 0 4px 12px rgb(0 0 0 / .08);
    border: 1px solid #ddd
}

.case-study-wrapper .tab-btn:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 0 0 / .08)
}

.case-study-wrapper .tab-btn.active {
    background: linear-gradient(135deg, #7ED957 0%, #7ED957 100%);
    color: #000;
    box-shadow: 0 6px 20px rgb(245 196 0 / .3)
}

.case-study-wrapper .tab-btn i {
    font-size: 18px
}

.case-study-wrapper .tab-content-wrapper {
    display: none;
    animation: fadeInUp 0.6s ease
}

.case-study-wrapper .tab-content-wrapper.active {
    display: block
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.case-study-wrapper .case-card {
    background: #fbfbfb;
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1)
}

.case-study-wrapper .case-card:hover {
    border-color: #7ED957;
    box-shadow: 0 12px 48px rgb(0 0 0 / .1);
    transform: translateY(-8px)
}

.case-study-wrapper .case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.case-study-wrapper .client-badge {
    display: inline-block;
    background: #dfb71217;
    color: #000;
    padding: 3px 19px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
    border: 1px solid #7ED957;
    padding-top: 6px
}

.case-study-wrapper .section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a
}

.case-study-wrapper .section-title i {
    font-size: 24px;
    color: #7ED957
}

.case-study-wrapper .section-content {
    color: #495057;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px
}

.case-study-wrapper .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px
}

.case-study-wrapper .metric-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 11px;
    border-radius: 16px;
    border-left: 4px solid #7ED957;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.case-study-wrapper .metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(245 196 0 / .08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease
}

.case-study-wrapper .metric-card:hover::before {
    opacity: 1
}

.case-study-wrapper .metric-card:hover {
    transform: translateX(8px);
    border-left-width: 6px;
    box-shadow: 0 8px 24px rgb(0 0 0 / .08)
}

.case-study-wrapper .metric-icon {
    font-size: 28px;
    color: #7ED957;
    margin-bottom: 12px
}

.case-study-wrapper .metric-value {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1px
}

.case-study-wrapper .metric-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 6px
}

.case-study-wrapper .metric-change {
    font-size: 13px;
    color: #28a745;
    font-weight: 600
}

.case-study-wrapper .case-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgb(0 0 0 / .12)
}

.case-study-wrapper .case-image {
    width: 100%;
    height: 336px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.4, 0, .2, 1)
}

.case-study-wrapper .case-image-wrapper:hover .case-image {
    transform: scale(1.08)
}

.case-study-wrapper .result-badge {
    display: inline-block;
    background: #e9ecef;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 36px;
    border: 2px solid #dee2e6;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    min-width: 400px !important;
    width: 501px;
    margin-top: 30px
}

.case-study-wrapper .impact-title {
    font-size: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, #7ED957 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    margin: 23px 0 13px;
    letter-spacing: -.5px
}

@media (max-width: 1200px) {
    .case-study-wrapper .case-content {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .case-study-wrapper .case-image {
        height: 400px
    }
}

@media (max-width: 768px) {
    .case-study-wrapper .custom-tabs {
        flex-wrap: nowrap
    }

    .case-study-wrapper .tab-btn {
        padding: 12px 20px;
        font-size: 14px
    }

    .case-study-wrapper .case-card {
        padding: 32px 20px
    }

    .case-study-wrapper .metrics-grid {
        grid-template-columns: 1fr
    }

    .case-study-wrapper .case-image {
        height: 300px
    }

    .case-study-wrapper .section-title {
        font-size: 24px
    }

    .case-study-wrapper .impact-title {
        font-size: 28px
    }
}

.case-study-wrapper .metric-label {
    margin-bottom: -7px;
}

h3.expert-title {
    color: #fff;
}

img.bggg {
    width: 100%;
    position: fixed;
    top: 50px;
    opacity: .1;
}

img.human {
    position: fixed;
    top: 140px;
    width: 80%;
    left: -0px;
    opacity: .2;
}

.banner-video {
    position: absolute;
    top: 0;
    opacity: .2;
}

.marketing-services-section .service-item a {
    color: #000;
    font-weight: 400;
}

.contact-section .expert-description {
    margin-bottom: 0px;
}

.contact-section .expert-card {
    padding: 23px 45px;
}

.contact-section .expert-description {
    margin-bottom: 7px;
}

.contact-section .expert-title {
    margin-bottom: 0;
}

.contact-section .action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: -1px;
    align-items: center;
    margin-top: 10px;
}

.contact-section .phone-item a {
    color: #fff;
    font-size: 14px;
}

.problems-section .card-number {
    color: rgb(49, 245, 0);
}